@charset "UTF-8";
/* ===== 預約遊玩 ===== */
/* 預約選項 */
.rv-tool-bar {
  width: 100%;
  background-color: #fff;
  padding: 8px;
  margin: 0 0 40px 0;
  border-radius: 25vw;
  display: flex;
  align-items: stretch;
  gap: 0 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 992px) {
  .rv-tool-bar {
    border-radius: 12px;
  }
}

.rv-tool-select-ul {
  display: flex;
  margin: 0;
  padding: 14px 0;
  flex-grow: 1;
}
.rv-tool-select-ul > li {
  cursor: pointer;
  font-size: 16px;
  color: #555;
  list-style: none;
  position: relative;
  border-right: 1px solid #555;
  padding: 8px 40px;
  text-align: center;
  display: flex;
  align-items: center;
}
.rv-tool-select-ul > li:nth-child(4) {
  border-right: 0;
}
.rv-tool-select-ul > li::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  content: "\f0d7";
  position: absolute;
  right: 12px;
}
.rv-tool-select-ul > li:hover > .rv-sort-ul {
  transform: scaleY(1);
  opacity: 1;
}

.rv-sort-ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 16px 0;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: 0.3s;
}
.rv-sort-ul > li {
  list-style: none;
  padding: 0 16px;
}
.rv-sort-ul > li > a {
  display: flex;
  justify-content: center;
  color: #555;
  text-decoration: none;
  padding: 8px 8px;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
}
.rv-sort-ul > li:nth-last-child(1) > a {
  border-bottom: 0;
}
.rv-sort-ul > li:hover {
  background-color: #f9dfea;
}

.search-games {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-grow: 1;
}
.search-games > input {
  border: 1px solid #ccc;
  border-radius: 25vw;
  padding: 0 24px;
  color: #555;
  transition: 0.3s;
}
.search-games > input:focus {
  border: 1px solid rgb(255, 166, 216);
  box-shadow: inset 0 0 14px rgba(193, 53, 132, 0.25);
  outline: 0;
}

.search-games-btn {
  display: flex;
  align-items: center;
  justify-self: flex-end;
  gap: 0 6px;
  background-color: rgb(193, 53, 132);
  border: 2px solid rgb(193, 53, 132);
  color: #fff;
  padding: 0 28px;
  border-radius: 25vw;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0), 0 0 10px rgba(193, 53, 132, 0), inset 0 0 2px rgba(255, 255, 255, 0);
  transition: 0.3s;
  box-sizing: border-box;
}
.search-games-btn::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f002";
}
.search-games-btn:hover {
  background-color: rgb(241, 89, 176);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 6px rgba(193, 53, 132, 0.4), 0 0 20px rgba(193, 53, 132, 0.5), inset 0 0 4px rgba(255, 255, 255, 0.9);
}

/* 預約選項-form版 */
.game-filter-form {
  display: flex;
  width: 100%;
  position: relative;
  padding: 8px 22px;
  gap: 0 8px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .game-filter-form {
    justify-content: center;
    gap: 16px 8px;
  }
}
@media (max-width: 768px) {
  .game-filter-form {
    padding: 8px;
  }
}
.game-filter-form > select {
  outline: 0;
  border: 0;
  background-color: transparent;
  padding: 12px 50px 12px 0;
  margin: 0 16px 0 0;
  border-right: 1px solid #e8e8e8;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  color: #555;
  background-image: url(../../images/caret_down_ico.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
}
@media (max-width: 992px) {
  .game-filter-form > select {
    flex-grow: 1;
  }
}
.game-filter-form > select > option {
  width: 100%;
}
@media (max-width: 768px) {
  .game-filter-form > select {
    width: 30%;
    margin: 0;
  }
  .game-filter-form > select:nth-child(3) {
    border-right: 0;
  }
}
@media (max-width: 587px) {
  .game-filter-form > select {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #e8e8e8;
  }
}
.game-filter-form .keyword-input {
  border: 1px solid #ccc;
  border-radius: 25vw;
  padding: 0 24px;
  color: #555;
  transition: 0.3s;
  margin: 0 0 0 auto;
  flex-shrink: 1;
}
@media (max-width: 992px) {
  .game-filter-form .keyword-input {
    flex-grow: 1;
    height: 40px;
  }
}
.game-filter-form .keyword-input:focus {
  border: 1px solid rgb(255, 166, 216);
  box-shadow: inset 0 0 14px rgba(193, 53, 132, 0.25);
  outline: 0;
}

/* 推薦給您 */
.text-center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.suggest-list-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.suggest-list {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 32px;
}
@media (max-width: 992px) {
  .suggest-list {
    gap: 20px 20px;
  }
}

.suggest-game-grid {
  width: calc(50% - 16px);
  padding: 16px;
  position: relative;
  border-radius: 8px;
  border: 3px solid #ff75ff;
  box-shadow: 0 3px 6px rgba(77, 7, 7, 0.3), 0 3px 12px rgba(77, 7, 7, 0.3);
  margin: 0;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 206px;
  /*&::after {
      display: block;
      content: '';
      width: 90%;
      height: 70%;
      border-radius: 50%;
      position: absolute;
      background-color: #4F9253;
      bottom: 0;
      left: 0;
      z-index: 1;
      border: 1px solid #CEFFDA;
      box-shadow: 0 0 20px #7AC997;
      transform: translate(-150%,100%);
      opacity: 0;
      transition: .3s;
      @include media-SM(){
          width: 110%;
      }
  }*/
}
.suggest-game-grid:hover {
  box-shadow: 0 3px 6px rgba(26, 53, 96, 0.5), 0 3px 20px rgba(73, 142, 153, 0.7);
}
.suggest-game-grid:hover .suggest-game-pic-frame::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
.suggest-game-grid:hover::after {
  transform: translate(-50%, 50%);
  opacity: 1;
}
@media (max-width: 768px) {
  .suggest-game-grid {
    width: 100%;
  }
}
@media (max-width: 587px) {
  .suggest-game-grid::after {
    width: 110%;
  }
}
@media (max-width: 768px) {
  .suggest-game-grid {
    width: 100%;
  }
}

.suggest-game-pic-frame {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.suggest-game-pic-frame > img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
}
.suggest-game-pic-frame::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: 0.3s;
}
.suggest-game-pic-frame::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(76, 85, 164, 0.4);
  box-shadow: inset 0 0 10px rgb(255, 255, 255);
  transition: 0.3s;
}

.game-name {
  width: calc(100% - 110px);
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 5px rgba(190, 89, 0, 0.94);
  position: relative;
  z-index: 3;
  margin: 0 0 10px 0;
}
@media (max-width: 992px) {
  .game-name {
    font-size: 28px;
  }
}

.prop-tags-set {
  position: relative;
  z-index: 3;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 12px;
  padding: 0;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .prop-tags-set {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .prop-tags-set {
    width: 100%;
    flex-grow: 1;
  }
}
.prop-tags-set > li {
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: baseline;
  padding: 4px 8px;
  border: 1px solid #C13584;
  border-radius: 6px;
  width: calc(50% - 6px);
}
@media (max-width: 992px) {
  .prop-tags-set > li {
    width: auto;
    align-self: baseline;
  }
}

.game-location {
  display: flex;
  gap: 0 4px;
  align-items: center;
  color: #fff;
  position: absolute;
  z-index: 3;
  padding: 6px 10px;
  background-color: rgba(193, 53, 132, 0.7);
  border-radius: 8px;
  top: 16px;
  right: 16px;
}
.game-location > img {
  display: block;
  width: 14px;
}

.game-time {
  display: flex;
  gap: 0 4px;
  align-items: center;
  position: relative;
  z-index: 3;
  margin: 0;
}
.game-time > img {
  display: block;
  width: 14px;
}

.choose-item {
  display: inline-flex;
  gap: 0 4px;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  z-index: 3;
  padding: 6px 10px;
  background: linear-gradient(to right, #2a95b5 0%, #4fae8c 100%);
  border-radius: 8px;
  bottom: 16px;
  right: 16px;
  position: absolute;
  margin: 0;
  transition: 0.3s;
  cursor: pointer;
}
.choose-item::before {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid #2a95b5;
}
.choose-item:hover {
  background: linear-gradient(to right, #2a95b5 50%, #4fae8c 100%);
}
@media (max-width: 768px) {
  .choose-item {
    font-size: 20px;
  }
}

/* 舊版
.choose-item {
    position: relative;
    z-index: 3;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 0 4px;
    cursor: pointer;
    margin: 0;
    text-shadow: 0 0 6px rgba(164,255,6,1),
                 0 0 2px rgba(164,255,6,.68);
    &::before {
        display: block;
        content: '';
        width: 30px;
        height: 30px;
        background-image: url(/images/reservation_item_ico.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
    @include media-MD(){
        font-size: 20px;
    }
}*/
/* 無匹配結果 */
.no-suitable-wrapper {
  display: flex;
  padding: 30px 0;
  justify-content: center;
  align-items: center;
}

.no-suitable-msg {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.no-suitable-ico {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 160px;
  height: 160px;
  border: 1px solid #FFA2A2;
  margin: 0 0 50px 0;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.7), inset 0 0 10px rgb(187, 0, 0);
}
.no-suitable-ico > i {
  transform: scale(5);
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.16);
}
.no-suitable-ico::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.7);
  filter: blur(20px);
  position: absolute;
  z-index: -1;
  opacity: 0.7;
}

.no-suitable-txt {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.4);
}
.no-suitable-txt::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #FF8D8D;
  filter: blur(24px);
  z-index: -1;
  opacity: 0.5;
}

.separate-line {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #7EB7C6;
  margin: 30px 0;
  box-shadow: 0 0 15px #00EEFF;
}

.game-info-wrapper {
  padding: 20px 20px 20px 0;
}
.game-info-wrapper::-webkit-scrollbar-track {
  background-color: #464646;
  border-radius: 25vw;
}
.game-info-wrapper::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 25vw;
}

/* 預訂Step 1 */
.step-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.content.dstepper-block {
  width: 50%;
  position: relative;
  margin: auto;
}
@media (max-width: 768px) {
  .content.dstepper-block {
    width: 100%;
  }
}

.widget-header {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  border: 0;
}

.widget-header-title {
  font-size: 32px;
  text-shadow: 0 0 1px #E4007f, 0 0 2px #E4007f, 0 0 4px #E4007f, 0 0 8px #E4007f, 0 0 10px #E4007f;
  font-weight: 600;
  position: relative;
  /*&::after {
      display: block;
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: #8DEBFF;
      filter: blur(24px);
      opacity: .4;
      z-index: -1;
  }*/
}

.widget-content {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.231372549);
  border: 3px solid #ff75ff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.33);
  margin: 24px 0;
}

.widget-footer {
  background-color: transparent;
  border: 0;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}

.widget-btn-primary {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  transition: 0.3s;
}
.widget-btn-primary:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.calendar-container {
  background-color: transparent;
}

/* 場地輪播 */
.arena-slider-wrapper {
  padding: 0 0 30px 0;
}
.arena-slider-wrapper .swiper-slide {
  position: relative;
  width: 33.3333333333%;
}
.arena-slider-wrapper .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background-color: #C13584;
}

/* 區塊控制 */
#reservalue-booking-widget {
  width: 100%;
  position: relative;
}

#load-more-btn {
  margin: 40px auto;
  padding: 6px 20px;
  border-radius: 6px;
  outline: 0;
  border: 0;
  color: #fff;
  background-color: #E4007f;
  border-color: var(--bs-btn-hover-border-color);
  transition: 0.3s;
}/*# sourceMappingURL=enhance.css.map */